From: Mirko Vogt Date: Sun, 4 Jan 2009 03:11:33 +0000 (+0000) Subject: prohibit cython of building *.so-files - just use plain python-implementation X-Git-Url: http://git.openwrt.org/%22https:/collectd.org//%22/%22https:/collectd.org/%22?a=commitdiff_plain;h=3f2831c80df0dfc93c81a9632f0c9a6555c07525;p=openwrt%2Fsvn-archive%2Fpackages.git prohibit cython of building *.so-files - just use plain python-implementation SVN-Revision: 13851 --- diff --git a/lang/cython/Makefile b/lang/cython/Makefile index bccaec14a..9ef4f6cf1 100644 --- a/lang/cython/Makefile +++ b/lang/cython/Makefile @@ -32,7 +32,8 @@ define Package/cython/description endef define Build/Compile - $(call Build/Compile/PyMod,,install --prefix="$(PKG_INSTALL_DIR)/usr") + # <--no-cython-compile> required, otherwise setup.py calls the target-gcc to create so-files which obviously can't be used by on the host system. + $(call Build/Compile/PyMod,,install --no-cython-compile --prefix="$(PKG_INSTALL_DIR)/usr") endef define Build/InstallDev